home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedCommand.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  129 b   |  12 lines

  1. /*    =============
  2.  *    PedCommand.hh
  3.  *    =============
  4.  */
  5.  
  6. #pragma once
  7.  
  8. class PedCommand {
  9. public:
  10.     virtual void Execute() = 0;
  11. };
  12.